2985a07a1cbcb42808435c2640a5629ca339099a,extensions/security/openid/src/org/exist/security/openid/servlet/AuthenticatorOpenId.java,AuthenticatorOpenId,authRequest,#String#HttpServletRequest#HttpServletResponse#,147

Before Change


			// wants up to three email addresses
			fetch.setCount("email", 3);

			authReq.addExtension(fetch);
			
			if (!discovered.isVersion2()) {
				// Option 1: GET HTTP-redirect to the OpenID Provider endpoint

After Change


				// wants up to three email addresses
				fetch.setCount(UserAttributes._EMAIL, 3);

				authReq.addExtension(fetch);
			}
			
			if (!discovered.isVersion2()) {